home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / goodbye.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  423 b   |  19 lines

  1. #include "bbs.h"
  2.  
  3.  
  4. void Goodbye(void)
  5. {
  6.  extern int QuickFlag;
  7.  
  8.  if(!QuickFlag) {
  9.          /****** Cycle Logoff Screens ******/
  10.            sprintf(GSTR1,"%sLogoff",Sopt->NodeScreen);  
  11.      if((User_keys.Userflags & USER_SCRNCLR) && Whence_The_Logon!=SYSOP_LOGON)
  12.      {  AEPutStr("\f");   // (RTS) Screen CLEAR
  13.         ChecktoDisplay(GSTR1,GSTR2,1,0);
  14.      }
  15.     }
  16.  if(Whence_The_Logon!=SYSOP_LOGON)AEPutStr("\r\nClick...");
  17. }
  18.  
  19.